-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove DumpFile operations #616
Conversation
fappy1234567
commented
Sep 11, 2024
- Modify operations to use memory instead of disk
eb1526a
to
606c148
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #616 +/- ##
==========================================
+ Coverage 21.82% 21.93% +0.10%
==========================================
Files 122 122
Lines 10730 10839 +109
==========================================
+ Hits 2342 2377 +35
- Misses 8070 8140 +70
- Partials 318 322 +4
|
a507f6b
to
e272e20
Compare
c93d8c7
to
30edd41
Compare
misc/snapshotter/Dockerfile
Outdated
@@ -16,8 +16,11 @@ RUN apk add -q --no-cache curl && \ | |||
FROM base AS kubectl-sourcer | |||
ARG TARGETARCH | |||
|
|||
# RUN apk add -q --no-cache curl && \ | |||
# curl -fsSL -o /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/"$(curl -L -s https://dl.k8s.io/release/stable.txt)"/bin/linux/"$TARGETARCH"/kubectl && \ | |||
# chmod +x /usr/bin/kubectl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should remove the useless codes.
pkg/filesystem/fs.go
Outdated
snapshotID := supplementInfo.SnapshotID | ||
labels := supplementInfo.Labels | ||
params := supplementInfo.Params | ||
err = daemonconfig.SupplementDaemonConfig(cfg, imageID, snapshotID, false, labels, params) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we pass the entire supplementInfo
to SupplementDaemonConfig
?
tests/helpers/helpers.sh
Outdated
@@ -99,7 +99,8 @@ install::kind(){ | |||
} | |||
|
|||
install::kubectl(){ | |||
local version="${1:-}" | |||
#local version="${1:-}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto.
96575e2
to
437b404
Compare
7315695
to
a8c16bb
Compare
a8c16bb
to
29243e3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!